home *** CD-ROM | disk | FTP | other *** search
- ' WELCOME.BAS
- '
- ' Welcome to the QuickBASIC Interpreter!
- '
- ' To run this program, drop down the Run menu and choose Start
- ' or hold down either Shift key and press the F5 function key.
-
- CLS
-
- FOR i% = 1 TO 3
-
- READ column%, word$
- y% = 0
- FOR row% = 2 TO 18
- FOR y% = 1 TO 15
- LOCATE row%, column%
- COLOR y%, 5
- PRINT word$
-
- LOCATE row% - 1, column%
- NEXT y%
- PRINT SPACE$(LEN(word$))
- SOUND (2400 / row%), 1
- NEXT row%
-
- NEXT i%
-
- LOCATE 1, 1
-
- DATA 25, "Innovative", 37, "Computer",48, "Consultants",
-
-